/* ═══════════════════════════════════════════════
   DESIGN TOKENS & RESET  —  LIGHT THEME
═══════════════════════════════════════════════ */
:root {
  --gold: #1a3a7a;
  --gold-light: #2d5fb8;
  --gold-dim: #1a3a7a;
  --navy: #f4f6fb;
  --navy-2: #eaecf4;
  --navy-3: #dde1ee;
  --navy-card: rgba(255, 255, 255, 0.85);
  --navy-glass: rgba(240, 244, 255, 0.75);
  --blue-acc: #1a3a7a;
  --text-1: #0f172a;
  --text-2: #374151;
  --text-3: #6b7280;
  --border: rgba(26, 58, 122, 0.18);
  --border-dim: rgba(0, 0, 0, 0.09);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── SVG Icon sizing inside containers ── */
.oc-icon svg,
.cc-icon svg,
.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  display: block;
}

.fb-svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  display: block;
}

.meta-chip svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  stroke: var(--gold-light);
}

.module-tag svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}

/* ═══════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #e8eaf0;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.gold {
  color: var(--gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  background: rgba(45, 95, 184, 0.07);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-1);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Parallax Background Layers */
.parallax-layer {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26, 58, 122, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26, 58, 122, 0.05) 0%, transparent 50%);
  pointer-events: none;
  will-change: transform;
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}

#navbar.scrolled {
  background: rgba(244, 246, 251, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding: 0.65rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.logo-aim {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.25rem;
}

.logo-dot {
  color: var(--gold-dim);
}

.logo-name {
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ── NEXA Logo Image ── */
.nav-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--trans);
}

.nav-logo:hover .nav-logo-img {
  transform: translateY(-1px);
}

.nav-logo-divider {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 200;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 0.15rem;
}

.nav-logo-trainer {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}

/* About org logo */
.org-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 52px;
}

.org-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Footer logo */
.footer-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--trans);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--trans);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: transform var(--trans), box-shadow var(--trans);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 95, 184, 0.30);
}

.nav-cta::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26, 58, 122, 0.20);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 95, 184, 0.40);
}

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 95, 184, 0.12);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero-parallax-bg {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 120% 80% at 60% 30%, rgba(26, 58, 122, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 10% 70%, rgba(26, 58, 122, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(26, 58, 122, 0.05) 0%, transparent 45%);
  will-change: transform;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 122, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 122, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(45, 95, 184, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  animation: fadeSlideDown 0.9s 0.1s ease both;
}

.hero-title-line {
  display: block;
  color: var(--text-1);
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 4s linear infinite, fadeSlideDown 0.9s 0.15s ease both;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeSlideDown 1s 0.2s ease both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 1s 0.3s ease both;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(26, 58, 122, 0.07);
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: all var(--trans);
}

.tag:hover {
  background: rgba(45, 95, 184, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeSlideDown 1s 0.4s ease both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeSlideDown 1s 0.5s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-suffix {
  font-size: 1.4rem;
  color: var(--gold-dim);
  font-weight: 700;
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ═══════════════════════════════════════════════
   HERO DECORATIVE ELEMENTS
═══════════════════════════════════════════════ */

/* ── Gradient Orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  filter: blur(60px);
}

.hero-orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.13), rgba(26, 58, 122, 0.08) 60%, transparent);
  animation: orbDrift1 18s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(26, 58, 122, 0.11), rgba(100, 149, 237, 0.07) 60%, transparent);
  animation: orbDrift2 22s ease-in-out infinite;
}

.hero-orb--3 {
  width: 280px;
  height: 280px;
  top: 40%;
  right: 12%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.09), transparent 70%);
  animation: orbDrift3 14s ease-in-out infinite;
}

@keyframes orbDrift1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, 30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 50px) scale(0.97);
  }
}

@keyframes orbDrift2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-50px, -30px) scale(1.08);
  }

  70% {
    transform: translate(20px, -60px) scale(0.94);
  }
}

@keyframes orbDrift3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 40px);
  }
}

/* ── Geometric Shapes ── */
.hero-shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.hero-ring-1 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 5%;
  border: 2px solid rgba(26, 58, 122, 0.15);
  border-radius: 50%;
  animation: floatA 12s ease-in-out infinite;
}

.hero-ring-2 {
  width: 90px;
  height: 90px;
  bottom: 18%;
  right: 8%;
  border: 1.5px solid rgba(26, 58, 122, 0.2);
  border-radius: 50%;
  animation: floatB 9s ease-in-out infinite;
}

.hero-dot-1 {
  width: 14px;
  height: 14px;
  top: 22%;
  right: 18%;
  background: rgba(45, 95, 184, 0.30);
  border-radius: 50%;
  animation: floatC 7s ease-in-out infinite;
}

.hero-dot-2 {
  width: 9px;
  height: 9px;
  top: 60%;
  left: 10%;
  background: rgba(26, 58, 122, 0.3);
  border-radius: 50%;
  animation: floatA 10s ease-in-out infinite 2s;
}

.hero-dot-3 {
  width: 18px;
  height: 18px;
  bottom: 25%;
  left: 20%;
  background: rgba(26, 58, 122, 0.15);
  border-radius: 50%;
  animation: floatB 13s ease-in-out infinite 1s;
}

.hero-diamond {
  width: 28px;
  height: 28px;
  top: 75%;
  right: 22%;
  background: rgba(26, 58, 122, 0.15);
  transform: rotate(45deg);
  border: 1.5px solid rgba(26, 58, 122, 0.25);
  animation: floatC 11s ease-in-out infinite 3s;
}

.hero-cross {
  width: 22px;
  height: 22px;
  top: 30%;
  left: 15%;
  position: absolute;
  animation: floatA 8s ease-in-out infinite 1s;
}

.hero-cross::before,
.hero-cross::after {
  content: '';
  position: absolute;
  background: rgba(45, 95, 184, 0.25);
  border-radius: 2px;
}

.hero-cross::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hero-cross::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

@keyframes floatC {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  33% {
    transform: translateY(-12px) translateX(8px);
  }

  66% {
    transform: translateY(6px) translateX(-6px);
  }
}

/* ── Floating Keyword Pills ── */
.hero-float-pill {
  position: absolute;
  pointer-events: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.38rem 0.9rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 58, 122, 0.15);
  color: #1a3a7a;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  will-change: transform;
  animation: floatPill 10s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-float-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #1a3a7a;
}

.hero-pill--1 {
  top: 14%;
  left: 7%;
  animation-delay: 0s;
  animation-duration: 11s;
}

.hero-pill--2 {
  top: 20%;
  right: 6%;
  animation-delay: 1.5s;
  animation-duration: 9s;
}

.hero-pill--3 {
  top: 72%;
  left: 4%;
  animation-delay: 0.8s;
  animation-duration: 13s;
}

.hero-pill--4 {
  top: 65%;
  right: 5%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.hero-pill--5 {
  top: 40%;
  left: 2%;
  animation-delay: 3s;
  animation-duration: 12s;
}

.hero-pill--6 {
  bottom: 12%;
  left: 30%;
  animation-delay: 1s;
  animation-duration: 14s;
}

.hero-pill--7 {
  top: 8%;
  right: 20%;
  animation-delay: 2.5s;
  animation-duration: 8s;
}

.hero-pill--8 {
  bottom: 20%;
  right: 15%;
  animation-delay: 0.5s;
  animation-duration: 11s;
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  30% {
    transform: translateY(-10px) translateX(4px);
  }

  60% {
    transform: translateY(6px) translateX(-4px);
  }
}

/* ── Floating Mini-Cards ── */
.hero-float-card {
  position: absolute;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 58, 122, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: transform;
  animation: floatCard 12s ease-in-out infinite;
}

.hero-card--1 {
  top: 28%;
  left: 3%;
  animation-delay: 0s;
  animation-duration: 13s;
}

.hero-card--2 {
  top: 45%;
  right: 3%;
  animation-delay: 1.5s;
  animation-duration: 11s;
}

.hero-card--3 {
  bottom: 14%;
  left: 8%;
  animation-delay: 3s;
  animation-duration: 14s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.hfc-icon {
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hfc-icon svg {
  width: 22px;
  height: 22px;
}

.hfc-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hfc-text strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.hfc-text span {
  font-size: 0.7rem;
  color: #6b7280;
  line-height: 1;
}

/* hide decorative elements on mobile */
@media (max-width: 768px) {
  .hero-orb {
    display: none;
  }

  .hero-float-pill {
    display: none;
  }

  .hero-float-card {
    display: none;
  }

  .hero-shape {
    display: none;
  }
}

.hero-scroll-indicator {

  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  animation: fadeSlideDown 1s 0.8s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-avatar-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold) 100%);
  animation: rotateBorder 8s linear infinite;
  position: relative;
  flex-shrink: 0;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--navy-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: rotate(0deg);
  animation: counterRotate 8s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.avatar-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
}

.about-badges-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  background: var(--navy-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-1);
  box-shadow: var(--shadow);
  animation: floatBadge 4s ease-in-out infinite;
  pointer-events: auto;
}

.float-badge-1 {
  top: 5%;
  right: -5%;
  animation-delay: 0s;
}

.float-badge-2 {
  top: 50%;
  right: -15%;
  animation-delay: 1.3s;
}

.float-badge-3 {
  bottom: 10%;
  right: -8%;
  animation-delay: 2.6s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fb-icon {
  font-size: 1rem;
}

.about-content {}

.about-tagline {
  font-size: 0.9rem;
  color: var(--gold-dim);
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.about-bio {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-bio strong {
  color: var(--text-1);
  font-weight: 600;
}

.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tool-chip {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  background: #e8f0fe;
  border: 1px solid #b6ccf7;
  color: #1a3a7a;
  transition: all var(--trans);
}

.tool-chip:hover {
  background: #1a3a7a;
  color: #fff;
  border-color: #1a3a7a;
  transform: translateY(-2px);
}

.about-org {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1.8rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  background: rgba(201, 168, 76, 0.04);
}

.org-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}

.org-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.org-info strong {
  color: var(--text-1);
  font-weight: 600;
}

.org-info span {
  color: var(--text-3);
  font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════
   FLAGSHIP
═══════════════════════════════════════════════ */
#flagship {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}

.flagship-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.meta-chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(45, 95, 184, 0.08);
  border: 1px solid var(--border);
  color: var(--gold-light);
}

/* Modules Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.module-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(8px);
  cursor: default;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}

.module-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(45, 95, 184, 0.08);
}

.module-card:hover::before {
  opacity: 1;
}

.module-capstone {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(45, 95, 184, 0.08) 0%, var(--navy-card) 100%);
  border-color: rgba(45, 95, 184, 0.15);
}

.module-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(45, 95, 184, 0.10);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  transition: color var(--trans);
}

.module-card:hover .module-number {
  color: rgba(45, 95, 184, 0.15);
}

.module-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.module-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.1rem;
  line-height: 1.3;
  padding-right: 2.5rem;
}

.module-list {
  margin-bottom: 1.2rem;
}

.module-list li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 1px solid var(--border-dim);
  line-height: 1.5;
}

.module-list li:last-child {
  border-bottom: none;
}

.module-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-weight: 700;
}

.module-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  background: rgba(45, 95, 184, 0.08);
  border: 1px solid rgba(45, 95, 184, 0.15);
  color: var(--gold);
  display: inline-block;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   WORKSHOPS
═══════════════════════════════════════════════ */
#workshops {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.workshop-card {
  background: var(--navy-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.workshop-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), var(--gold-dim));
  transform: scaleX(0);
  transition: transform var(--trans);
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--border);
}

.workshop-card:hover::after {
  transform: scaleX(1);
}

.workshop-featured {
  border-color: rgba(45, 95, 184, 0.20);
  background: linear-gradient(135deg, rgba(45, 95, 184, 0.07) 0%, var(--navy-card) 100%);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.06);
}

.ws-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}

.ws-all {
  background: rgba(100, 180, 100, 0.12);
  color: #80d080;
  border: 1px solid rgba(100, 180, 100, 0.25);
}

.ws-flagship {
  background: rgba(45, 95, 184, 0.10);
  color: var(--gold);
  border: 1px solid var(--border);
}

.ws-sprint {
  background: rgba(100, 150, 255, 0.12);
  color: #8ab4f8;
  border: 1px solid rgba(100, 150, 255, 0.25);
}

.ws-build {
  background: rgba(200, 100, 255, 0.12);
  color: #c880ff;
  border: 1px solid rgba(200, 100, 255, 0.25);
}

.ws-duration {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.ws-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
}

.ws-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.ws-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ws-tool {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  background: #e8f0fe;
  border: 1px solid #b6ccf7;
  color: #1a3a7a;
  transition: all var(--trans);
}

.ws-tool:hover {
  background: #1a3a7a;
  color: #fff;
  border-color: #1a3a7a;
}

.ws-topics {
  flex: 1;
}

.ws-topics li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 1px solid var(--border-dim);
}

.ws-topics li:last-child {
  border-bottom: none;
}

.ws-topics li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.75rem;
}

.ws-btn {
  margin-top: auto;
}

/* ═══════════════════════════════════════════════
   OUTCOMES
═══════════════════════════════════════════════ */
#outcomes {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.outcomes-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  background: var(--navy-card);
  margin-bottom: 1rem;
  transition: all var(--trans);
  backdrop-filter: blur(6px);
}

.outcome-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.oc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(45, 95, 184, 0.08);
  border: 1px solid rgba(45, 95, 184, 0.10);
}

.oc-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.oc-text strong {
  font-size: 0.92rem;
  color: var(--text-1);
  font-weight: 600;
}

.oc-text span {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* Compliance Banner */
.compliance-banner {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(10px);
}

.compliance-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.compliance-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.compliance-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border-dim);
  transition: all var(--trans);
}

.compliance-chip:hover {
  border-color: var(--border);
  background: rgba(45, 95, 184, 0.08);
  transform: translateY(-2px);
}

.cc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.compliance-chip div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.compliance-chip strong {
  font-size: 0.85rem;
  color: var(--text-1);
  font-weight: 600;
}

.compliance-chip span {
  font-size: 0.72rem;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  background: var(--navy-card);
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(45, 95, 184, 0.08);
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-item strong {
  font-size: 0.85rem;
  color: var(--text-1);
  font-weight: 600;
}

.contact-item span {
  font-size: 0.82rem;
  color: var(--text-3);
}

.contact-orgs {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 95, 184, 0.12);
  background: rgba(201, 168, 76, 0.04);
}

.contact-org {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-org strong {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

.contact-org span {
  font-size: 0.75rem;
  color: var(--text-3);
}

.contact-org-divider {
  color: var(--gold-dim);
  font-size: 1.2rem;
  font-weight: 300;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-1);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: all var(--trans);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a7a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(45, 95, 184, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group select option {
  background: var(--navy-3);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.8rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-2);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border-dim);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color var(--trans);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-3);
  text-align: right;
  line-height: 1.6;
}

.footer-copy a {
  color: var(--gold-dim);
  transition: color var(--trans);
}

.footer-copy a:hover {
  color: var(--gold);
}

/* ── NEXA Brand Highlighted Links ── */
.nexa-link {
  display: inline;
  color: var(--gold-light);
  text-decoration: none;
  position: relative;
  font-weight: 700;
  transition: color var(--trans);
  border-bottom: 1.5px solid rgba(45, 95, 184, 0.30);
  padding-bottom: 1px;
}

.nexa-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 12px rgba(45, 95, 184, 0.35);
}

.nexa-link strong {
  color: inherit;
  font-weight: 700;
}

.nexa-link-footer {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 95, 184, 0.28);
  padding-bottom: 1px;
  transition: all var(--trans);
}

.nexa-link-footer:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 10px rgba(45, 95, 184, 0.30);
}

/* Navbar logo now links to domain — add cursor visual */
.nav-logo {
  cursor: pointer;
}


/* ═══════════════════════════════════════════════
   NEXA SECTION
═══════════════════════════════════════════════ */
#nexa {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1329 0%, #111a33 100%);
  color: #f8fafc;
}

#nexa .section-label {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-weight: 700;
  letter-spacing: 0.18em;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

#nexa .section-title {
  color: #ffffff;
}

#nexa .nexa-link {
  color: #60a5fa;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.5);
  text-underline-offset: 6px;
  transition: color 0.3s ease;
}

#nexa .nexa-link:hover {
  color: #93c5fd;
}

#nexa .section-title .gold {
  color: #38bdf8;
  font-weight: 800;
}

#nexa .section-desc {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Tagline Strip */
.nexa-tagline-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.nexa-strip-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
}

.nexa-strip-item svg {
  width: 32px;
  height: 32px;
  stroke: #38bdf8;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.nexa-strip-item span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.nexa-strip-item small {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
  font-weight: 400;
}

.nexa-strip-sep {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent);
  flex-shrink: 0;
}

/* Sub-heading */
.nexa-sub-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nexa-sub-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
}

/* Services Grid */
.nexa-services-wrap {
  margin-bottom: 4rem;
}

.nexa-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.nexa-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.nexa-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  opacity: 0;
  transition: opacity var(--trans);
}

.nexa-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.nexa-service-card:hover::before {
  opacity: 1;
}

.nexa-service-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-direction: row;
}

.nexa-service-card--wide .nsc-icon {
  flex-shrink: 0;
}

.nsc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.nexa-service-card--wide .nsc-icon {
  margin-bottom: 0;
}

.nsc-icon svg {
  width: 22px;
  height: 22px;
  stroke: #38bdf8;
}

.nsc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.nsc-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
}

/* Bottom Grid */
.nexa-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Why Grid */
.nexa-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nexa-why-item {
  background: var(--navy-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--trans);
}

.nexa-why-item:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  background: rgba(201, 168, 76, 0.05);
}

.nwi-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.nwi-svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.nwi-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
  text-align: center;
}

/* NEXA Contact Block */
.nexa-contact-block {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.nexa-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.75rem;
  transition: all var(--trans);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.nexa-contact-item:hover {
  border-color: var(--border);
  background: rgba(201, 168, 76, 0.05);
  transform: translateX(4px);
}

.nexa-contact-item--address {
  cursor: default;
}

.nexa-contact-item--address:hover {
  transform: none;
}

.nci-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(45, 95, 184, 0.08);
  border: 1px solid rgba(45, 95, 184, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.nexa-contact-item div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
}

.nexa-contact-item div span {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* Responsive: NEXA */
@media (max-width: 1024px) {
  .nexa-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nexa-service-card--wide {
    grid-column: span 2;
  }

  .nexa-bottom-grid {
    grid-template-columns: 1fr;
  }

  .nexa-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nexa-tagline-strip {
    gap: 1rem;
  }

  .nexa-strip-sep {
    display: none;
  }

  .nexa-strip-item {
    padding: 0.5rem 1rem;
    min-width: 140px;
  }

  .nexa-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nexa-service-card--wide {
    grid-column: span 2;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nexa-services-grid {
    grid-template-columns: 1fr;
  }

  .nexa-service-card--wide {
    grid-column: span 1;
  }

  .nexa-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nexa-tagline-strip {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-capstone {
    grid-column: span 2;
  }

  .compliance-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .workshops-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo-trainer {
    display: none;
  }

  .nav-logo-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 300px;
    height: 100vh;
    background: rgba(248, 249, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-dim);
    z-index: 999;
    align-items: flex-start;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-cta {
    font-size: 1rem;
    padding: 0.65rem 1.6rem;
  }

  /* ── HERO ── */
  #hero {
    padding: 7rem 1.25rem 5rem;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .hero-stat-divider {
    height: 28px;
  }

  .hero-stat-label {
    font-size: 0.68rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* ── ABOUT ── */
  #about {
    padding: 5rem 0;
  }

  .about-avatar-ring {
    width: 220px;
    height: 220px;
  }

  .float-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }

  .float-badge-1 {
    top: 5%;
    right: 0;
    left: auto;
  }

  .float-badge-2 {
    top: 42%;
    right: -8%;
    left: auto;
  }

  .float-badge-3 {
    bottom: 10%;
    right: 0;
    left: auto;
  }

  .about-bio {
    font-size: 0.95rem;
  }

  /* ── FLAGSHIP / MODULES ── */
  #flagship {
    padding: 5rem 0;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .module-capstone {
    grid-column: span 1;
  }

  .module-card {
    padding: 1.5rem;
  }

  .module-number {
    font-size: 2.5rem;
  }

  /* ── WORKSHOPS ── */
  #workshops {
    padding: 5rem 0;
  }

  .workshops-grid {
    grid-template-columns: 1fr;
  }

  /* ── OUTCOMES ── */
  #outcomes {
    padding: 5rem 0;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .compliance-chips {
    grid-template-columns: 1fr 1fr;
  }

  /* ── CONTACT ── */
  #contact {
    padding: 5rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }

  .contact-orgs {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ── FOOTER ── */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  /* ── SECTION SPACING ── */
  .container {
    padding: 0 1.25rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* ── WhatsApp Widget ── */
  .wa-widget {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .wa-popup {
    width: calc(100vw - 2.4rem);
    right: 0;
  }

  .wa-fab-label {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Nav */
  .nav-inner {
    padding: 0 1rem;
  }

  .nav-logo-img {
    height: 32px;
  }

  #navbar {
    padding: 0.75rem 0;
  }

  /* Hero */
  #hero {
    padding: 6.5rem 1rem 4rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .hero-tags {
    justify-content: center;
    gap: 0.4rem;
  }

  .tag {
    font-size: 0.72rem;
    padding: 0.28rem 0.7rem;
  }

  .hero-stats {
    gap: 0;
    justify-content: space-around;
    width: 100%;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-num {
    font-size: 1.65rem;
  }

  .hero-stat-suffix {
    font-size: 1.1rem;
  }

  /* About */
  .about-avatar-ring {
    width: 200px;
    height: 200px;
  }

  .float-badge-1,
  .float-badge-2 {
    display: none;
  }

  .float-badge-3 {
    right: 0;
    left: auto;
    bottom: 0;
  }

  .about-org {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-sm {
    width: 100%;
    justify-content: center;
  }

  /* Module cards */
  .module-card {
    padding: 1.25rem;
  }

  .module-title {
    font-size: 1rem;
  }

  .module-list li {
    font-size: 0.82rem;
  }

  /* Workshops */
  .workshop-card {
    padding: 1.5rem;
  }

  .ws-duration {
    font-size: 1.6rem;
  }

  .ws-title {
    font-size: 1.1rem;
  }

  /* Outcomes */
  .compliance-chips {
    grid-template-columns: 1fr;
  }

  .compliance-banner {
    padding: 1.5rem 1.25rem;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .btn-full {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  /* Footer */
  .footer-links {
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL (≤ 360px)
═══════════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions .btn {
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
  }

  .about-avatar-ring {
    width: 180px;
    height: 180px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING WIDGET
═══════════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  pointer-events: none;
}

/* ── Floating Action Button ── */
.wa-fab {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  overflow: visible;
  pointer-events: auto;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

.wa-fab-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.wa-fab:hover .wa-fab-icon {
  transform: scale(1.08);
}

/* Pulse ring */
.wa-fab-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.5);
  animation: waRingPulse 2.2s ease-out infinite;
}

@keyframes waRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Tooltip label */
.wa-fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 20, 45, 0.92);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  border: 1px solid rgba(37, 211, 102, 0.25);
  backdrop-filter: blur(8px);
}

.wa-fab:hover .wa-fab-label {
  opacity: 1;
}

/* ── Popup Chat Bubble ── */
.wa-popup {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(37, 211, 102, 0.15);
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Header */
.wa-popup-header {
  background: linear-gradient(135deg, #075E54, #128C7E);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.wa-avatar svg {
  width: 100%;
  height: 100%;
}

.wa-popup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.wa-popup-info strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
}

.wa-online {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: waOnlinePulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes waOnlinePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.wa-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.wa-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Body / Message bubble */
.wa-popup-body {
  padding: 1.2rem;
  background: #ECE5DD;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-message-bubble {
  background: #fff;
  border-radius: 12px 12px 12px 0;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  font-family: 'Outfit', sans-serif;
}

.wa-message-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-message-bubble p {
  font-size: 0.88rem;
  color: #1a1a2e;
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.wa-message-bubble p:last-of-type {
  margin-bottom: 0.5rem;
}

.wa-message-bubble strong {
  color: #075E54;
}

.wa-time {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-align: right;
  margin-top: 0.3rem;
}

/* Start Chat CTA */
.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.9rem 1.2rem 1.2rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.wa-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 480px) {
  .wa-widget {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .wa-popup {
    width: calc(100vw - 2.4rem);
  }

  .wa-fab-label {
    display: none;
  }
}